home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / g / gnu_c / gpplib22.zoo / iosrc / iostrerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-30  |  204 b   |  12 lines

  1. /* This should be replaced by whatever namespace-clean
  2.    version of strerror you have available. */
  3.  
  4. extern char *strerror();
  5.  
  6. char *
  7. _IO_strerror(errnum)
  8.      int errnum;
  9. {
  10.   return strerror(errnum);
  11. }
  12.